{
GtkWidget** window_loc = data;
-/* g_print ("progressive_updated_callback:\n\t%d\t%d\t%d\t%d\n", x, y, width, height); */
+/* g_print ("progressive_updated_callback:\n\t%d\t%d\t%d\t%d\n", x, y, width, height); */
if (*window_loc != NULL)
gtk_widget_queue_draw_area(*window_loc,
* src/gdk-pixbuf-io.c (gdk_pixbuf_new_from_xpm_data): Added
documentation.
+1999-11-09 Federico Mena Quintero <federico@redhat.com>
+
+ * src/io-png.c: Fixed some incompatible pointer initializations.
+
+ * src/io-jpeg.c (image_load_increment): Remove unused variable.
+
1999-11-09 Michael Fulbright <drmike@redhat.com>
* src/testpixbuf.c: Fixed it to use timeout to read from file
PnmIOBuffer *inbuf;
/* pretend to be doing progressive loading */
- context.updated_func = context.prepared_func = NULL;
+ context.updated_func = NULL;
+ context.prepared_func = NULL;
context.user_data = NULL;
context.inbuf.bytes_left = 0;
context.inbuf.next_byte = NULL;
- context.pixels = context.pixbuf = NULL;
+ context.pixels = NULL;
+ context.pixbuf = NULL;
context.got_header = context.did_prescan = FALSE;
inbuf = &context.inbuf;
context->prepared_func = prepared_func;
context->updated_func = updated_func;
context->user_data = user_data;
- context->pixbuf = context->pixels = NULL;
+ context->pixbuf = NULL;
+ context->pixels = NULL;
context->got_header = FALSE;
context->did_prescan = FALSE;